home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 1.0 KB | 51 lines | [TEXT/ScoM] |
- ; This example shows both def-duration and def-expression.
- ; (legato 100 10 0.4) accepts larger than 100% values. This makes
- ; it easy to create overlaps without usind durations. If you set
- ; legato to 120 percent with 5 percent variation then each note
- ; generated will overlap the next. Overlaps are important when
- ; creating natural sounding pianos and string sections.
-
- (def-symbol
- piano1 '(a b c d e f g h i j k l m n)
- piano2 (reverse (symbol-of piano1))
- )
-
- (def-length
- piano1 '((1/16) (1/8t))
- piano2 '((1/16) (1/8t))
- )
-
- (def-duration
- piano1 '(1/2 1/4 1/8)
- piano2 '(1/4 1/8 1/2)
- )
-
- (def-tonality
- piano1 (activate-tonality (pentamajor c 4))
- piano2 (activate-tonality (pentamajor c 5))
- )
-
- (def-zone
- piano1 '(2/1 2/1 1/1 1/1)
- piano2 '(2/1 2/1 1/1 1/1)
- )
-
- (def-channel
- piano1 1
- piano2 2
- )
-
- (def-expression
- default ((humanize -2 2 0.4)
- (velocity 20 0.4)
- (legato 100 30 0.4))
- )
-
- (def-tempo 120)
-
- (midiport :printer)
-
- (compile-instrument-p "ccl;output:" "humanized overlaps"
- piano1
- piano2
- )